home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / utilstem / superbat / ask.doc < prev    next >
Text File  |  1988-09-05  |  1KB  |  39 lines

  1.  
  2.  
  3. Documentation for ASK.COM
  4.  
  5. ASK.COM Version 1.10, (C)Copyright T A Davis, 1983
  6.  
  7.  
  8. This program is an enhancement to the batch environment for DOS 2.00
  9. To use ask, include a line in your batch file like 'ASK Continue ? '
  10. The operating system will display 'Continue ? ' on the default output
  11. device and wait for a keypress from the keyboard. If any character
  12. besides Y,y,N,n is pressed, the program will display 'Y/N ? ' and
  13. wait for another keypress. Upon entering a valid key, the program will
  14. set ERRORLOEVEL to 0 or 1 depending on whether Yy or Nn was pressed.
  15.  
  16. As a further enhancement to earlier versions, now if ASK (C/R) is included
  17. the program will supply a prompt of 'Press Y or N ? '
  18.  
  19. To interogate ERRORLEVEL, use a batch file simular to the one listed
  20. below.
  21.  
  22. (BATCH FILE)
  23.  
  24. echo off
  25. echo Batch file to test ASK.COM
  26. :start
  27. ask
  28. if not errorlevel 1 goto yesin
  29.     echo You pressed N or n.
  30.     goto next
  31. :yesin
  32.     echo You pressed Y or y.
  33. :next
  34.     ask Want to do it again ?
  35.     if not errorlevel 1 goto start
  36.  
  37. (END OF BATCH FILE)
  38.  
  39.